home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-03-22 | 393 b | 19 lines |
- # Makefile for support programs for TapeBIOS
-
- LIBS = ../../lib/tape.olb
- CFLAGS = -Wall -O -I../../include -s
-
- all: mt dump dumpdir restore
-
- mt:
- gcc $(CFLAGS) -o ../exe/mt.ttp mt.c $(LIBS)
-
- dump:
- gcc $(CFLAGS) -o ../exe/dump.ttp dump.c $(LIBS)
-
- dumpdir:
- gcc $(CFLAGS) -o ../exe/dumpdir.ttp dumpdir.c $(LIBS)
-
- restore:
- gcc $(CFLAGS) -o ../exe/restore.ttp restore.c $(LIBS)
-